home *** CD-ROM | disk | FTP | other *** search
/ Clickx 75 / Clickx 75.iso / software / expressionweb / expressionwebv3 / ExpressionWeb_en.exe / Setup / WeImp.cab / PsdImaging.dll / XML / IMAGEEFFECT.XML < prev    next >
Encoding:
Extensible Markup Language  |  2009-07-15  |  1.6 KB  |  42 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <effect label="Image">
  3.     <description>
  4.         ImageEffect is a source Effect. It produces image data for other Effects to process.
  5.         The 'scale' supported is either power2 or identity depending on the value of 'MipMap'
  6.     </description>
  7.  
  8.     <description>
  9.         The Filename property can be set to a file path to read an image file from the file system.
  10.     </description>
  11.     
  12.     <property name="Filename" type="uri" label="File">
  13.         <comments>
  14.             ImageEffect loads the specified image file whenever this property is set to a file path string.
  15.         </comments>
  16.     </property>
  17.     <property name="UsePackedPixels" type="bool" default="false" save="0" label="Support PackPixels the returned buffer for raw files">
  18.         <comments>
  19.             If true, packs single channel image data into a packed 4 channel buffer
  20.         </comments>
  21.     </property>
  22.  
  23.     <property name="_ImageData" type="unknown" private="1" save="0"/>
  24.     
  25.     <property name="MipMap" type="bool" default="true" >
  26.         <comments>
  27.             Whether to return scaled (MipMap'ed) bits only only return unscaled bits
  28.         </comments>
  29.     </property>
  30.  
  31.     <property name="ImageFormat" type="int" private="1">
  32.       <comments>
  33.         Channel format of pixels. Values match those of ChannelFormat
  34.       </comments>
  35.     </property>
  36.  
  37.     <interface name="IImageEffect">
  38.         <comments>
  39.             Use the IImageEffect interface to access image data coming from memory or a BitmapSource.
  40.         </comments>
  41.     </interface>
  42. </effect>